+Sat Feb 14 00:05:18 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodelfilter.c (bsearch_elt_with_offset):
+ Use do instead of while. (#134031, Morten Welinder);
+
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
* configure.in: Suppress xsltproc and xmlcatalog checks
+Sat Feb 14 00:05:18 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodelfilter.c (bsearch_elt_with_offset):
+ Use do instead of while. (#134031, Morten Welinder);
+
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
* configure.in: Suppress xsltproc and xmlcatalog checks
+Sat Feb 14 00:05:18 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodelfilter.c (bsearch_elt_with_offset):
+ Use do instead of while. (#134031, Morten Welinder);
+
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
* configure.in: Suppress xsltproc and xmlcatalog checks
+Sat Feb 14 00:05:18 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodelfilter.c (bsearch_elt_with_offset):
+ Use do instead of while. (#134031, Morten Welinder);
+
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
* configure.in: Suppress xsltproc and xmlcatalog checks
+Sat Feb 14 00:05:18 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodelfilter.c (bsearch_elt_with_offset):
+ Use do instead of while. (#134031, Morten Welinder);
+
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
* configure.in: Suppress xsltproc and xmlcatalog checks
return NULL;
}
- while (start != end)
+ do
{
middle = (start + end) / 2;
else
break;
}
+ while (start != end);
if (elt->offset == offset)
{